Platform Explorer / Nuxeo Platform 2021.50

Component org.nuxeo.ecm.core.event.orphanVersionRemoval.listener

Resolution Order

99
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<?xml version="1.0"?>
<component name="org.nuxeo.ecm.core.event.orphanVersionRemoval.listener"
  version="1.0">

  <extension target="org.nuxeo.ecm.core.event.EventServiceComponent"
    point="listener">

    <documentation>
      Deprecated since 2021.44 there is now an orphan versions incremental GC (StreamDocumentGC).
      Listener used by DefaultVersionRemovalPolicy to remove the Orphan versions from repository in an async manner.
    </documentation>
    <listener name="orphanVersionRemoverListener" async="true" postCommit="true"
      class="org.nuxeo.ecm.core.versioning.OrphanVersionRemoverListener" enabled="false">
      <event>orphan_versions_to_remove</event>
    </listener>

  </extension>

</component>